|
Umístění Menu |
---|
Draft -> Rectangle |
Pracovní stoly |
Kreslení, Architecture |
Výchozí zástupce |
R E |
Představen ve verzi |
- |
Viz také |
Part Box |
Nástroj Obdélník vytváří obdélník zadáním dvou protějších bodů. Použije se tloušťka čáry a barva předem zadaná v záložce Nástrojů.
The corners of a Draft Rectangle can be filleted (rounded) or chamfered by changing its ÚdajeFillet Radius or ÚdajeChamfer Size respectively. It is also possible to subdivide a Draft Rectangle by changing its ÚdajeColumns and/or ÚdajeRows property.
See also: Draft Tray, Draft Snap and Draft Constrain.
The single character keyboard shortcuts available in the task panel can be changed. See Draft Preferences. The shortcuts mentioned here are the default shortcuts (for version 1.0).
See also: Preferences Editor and Draft Preferences.
See also: Property editor.
A Draft Rectangle object is derived from a Part Part2DObject and inherits all its properties. It also has the following additional properties:
Draft
Area
): (read-only) specifies the area of the face of the rectangle. The value will be 0.0
if ÚdajeMake Face if false
.Length
): specifies the length of the chamfers at the corners of the rectangle.Integer
): specifies the number of equal-sized columns in which the rectangle is divided.Length
): specifies the radius of the fillets at the corners of the rectangle.Distance
): specifies the height of the rectangle.Distance
): specifies the length of the rectangle.Bool
): specifies if the rectangle makes a face or not. If it is true
a face is created, otherwise only the perimeter is considered part of the object.Integer
): specifies the number of equal-sized rows in which the rectangle is divided.Draft
Enumeration
): specifies the Draft Pattern with which to fill the face of the rectangle. This property only works if ÚdajeMake Face is true
and if PohledDisplay Mode is Flat Lines
.Float
): specifies the size of the Draft Pattern.File
): specifies the path of the image file to be mapped onto the face of the rectangle. Blanking this property will remove the image. The rectangle should have the same proportions as the image to avoid distortions.Nástroj Obdélník může být využit v makrech a z konzoly Pythonu použitím následující funkce:
To create a Draft Rectangle use the make_rectangle
method (introduced in version 0.19) of the Draft module. This method replaces the deprecated makeRectangle
method.
rectangle = make_rectangle(length, height, placement=None, face=None, support=None)
Příklad:
import FreeCAD as App
import Draft
doc = App.newDocument()
rectangle1 = Draft.make_rectangle(4000, 1000)
rectangle2 = Draft.make_rectangle(1000, 4000)
zaxis = App.Vector(0, 0, 1)
p3 = App.Vector(1000, 1000, 0)
place3 = App.Placement(p3, App.Rotation(zaxis, 45))
rectangle3 = Draft.make_rectangle(3500, 250, placement=place3)
doc.recompute()